home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Library / Manuels & Misc / Assembly / AOA.ZIP / CH08 / EX8_5.A < prev    next >
Encoding:
Text File  |  1996-02-07  |  366 b   |  15 lines

  1. ; Header file for Ex8_5 project.
  2. ; This file includes the EXTERNDEF
  3. ; directive which makes the PrintVowels
  4. ; name public/external.  It also includes
  5. ; the PrtVowels macro which lets us call
  6. ; the PrintVowels routine in a manner
  7. ; similar to the UCR Standard Library
  8. ; routines.
  9.  
  10.         externdef PrintVowels:near
  11.  
  12. PrtVowels    macro
  13.         call    PrintVowels
  14.         endm
  15.